/******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.internal.ui.refactoring.reorg; import java.lang.reflect.InvocationTargetException; import org.eclipse.swt.widgets.Shell; import org.eclipse.core.runtime.Assert; import org.eclipse.core.resources.IResource; import org.eclipse.jface.operation.IRunnableContext; import org.eclipse.ui.PlatformUI; import org.eclipse.ltk.core.refactoring.RefactoringCore; import org.eclipse.ltk.core.refactoring.participants.CopyRefactoring; import org.eclipse.jdt.core.IJavaElement; import org.eclipse.jdt.core.JavaModelException; import org.eclipse.jdt.internal.corext.refactoring.reorg.IReorgDestination; import org.eclipse.jdt.internal.corext.refactoring.reorg.JavaCopyProcessor; import org.eclipse.jdt.internal.corext.refactoring.reorg.ReorgPolicyFactory; import org.eclipse.jdt.internal.corext.refactoring.reorg.IReorgPolicy.ICopyPolicy; import org.eclipse.jdt.internal.ui.refactoring.RefactoringExecutionHelper; public class ReorgCopyStarter { public static ReorgCopyStarter create(IJavaElement[] javaElements, IResource[] resources, IReorgDestination destination) throws JavaModelException { Assert.isNotNull(javaElements); Assert.isNotNull(resources); if (destination == null) return null; ICopyPolicy copyPolicy= ReorgPolicyFactory.createCopyPolicy(resources, javaElements); if (!copyPolicy.canEnable()) return null; JavaCopyProcessor copyProcessor= new JavaCopyProcessor(copyPolicy); if (!copyProcessor.setDestination(destination).isOK()) return null; return new ReorgCopyStarter(copyProcessor); } private final JavaCopyProcessor fCopyProcessor; private ReorgCopyStarter(JavaCopyProcessor copyProcessor) { Assert.isNotNull(copyProcessor); fCopyProcessor= copyProcessor; } public void run(Shell parent) throws InterruptedException, InvocationTargetException { IRunnableContext context= PlatformUI.getWorkbench().getActiveWorkbenchWindow(); fCopyProcessor.setNewNameQueries(new NewNameQueries(parent)); fCopyProcessor.setReorgQueries(new ReorgQueries(parent)); CopyRefactoring refactoring= new CopyRefactoring(fCopyProcessor); new RefactoringExecutionHelper(refactoring, RefactoringCore.getConditionCheckingFailedSeverity(), fCopyProcessor.getSaveMode(), parent, context).perform(false, false); } }